26-Nested Loop times table creator.py


Sign up Free. Don't forget to check out our challenges, lessons, solve and learn series and more ...


Code Snippet

for x in range(1,3):
    for y in range(1, 6):
        print ('%d * %d = %d' % (x, y, x*y))
                    

Try it yourself